home *** CD-ROM | disk | FTP | other *** search
/ The Virtual Portfolio - N…a Showcase - Book 5 1995 / VIRTUAL [md5 EC7DB5CC033E38E511F666CE80BCE509].ISO / pc / main / milne.dir / 00016.ls < prev    next >
Encoding:
Text File  |  1995-07-18  |  479 b   |  23 lines

  1. on enterFrame
  2.   if rollOver(5) then
  3.     set the puppet of sprite 5 to 1
  4.     set the castNum of sprite 5 to 42
  5.   end if
  6.   if not rollOver(5) then
  7.     set the castNum of sprite 5 to 3
  8.     set the puppet of sprite 5 to 0
  9.   end if
  10.   if rollOver(6) then
  11.     set the puppet of sprite 6 to 1
  12.     set the castNum of sprite 6 to 65
  13.   end if
  14.   if not rollOver(6) then
  15.     set the castNum of sprite 6 to 14
  16.     set the puppet of sprite 6 to 0
  17.   end if
  18. end
  19.  
  20. on exitFrame
  21.   go(the frame)
  22. end
  23.